Current Location: Home> Function Categories> localtime

localtime

Get local time
Name:localtime
Category:Date and time
Programming Language:php
One-line Description:Return to local time.

Definition and usage

localtime() function returns the local time.

Example

Output local time as numeric arrays and associative arrays:

 <?php
print_r ( localtime ( ) ) ;
echo "<br><br>" ;
print_r ( localtime ( time ( ) , true ) ) ;
?>

Try it yourself

Similar Functions
Popular Articles